home *** CD-ROM | disk | FTP | other *** search
/ Komputer for Alle 2002 #9 / K-CD-9-2002.ISO / Freedom Force / data1.cab / System_Files / wredir.py < prev   
Encoding:
Python Source  |  2002-03-21  |  2.4 KB  |  85 lines

  1. title = 'Console Window'
  2.  
  3. import Tkinter
  4. import Pmw       
  5. import guimaker
  6. from guimixin import *
  7. import sys, string
  8. import leveled
  9. if __name__ != '__main__':
  10.     import ff, js
  11.  
  12. # ---------------------------------------------------------------
  13. # Console Redirection To Window - redirect to GUI console window
  14. #        
  15. class ConsoleWin(GuiMixin, guimaker.GuiMaker):
  16.     def start(self):
  17.         self.text = 'FFConsole'
  18.         self.master.title(title)
  19.         self.master.iconname("FFConsole")
  20.       self.master.geometry('400x500+750+0')
  21.       #self.master.wm_iconify()
  22.         self.menuBar =  [ 
  23.           ('File', 0,                                
  24.               [guimaker.MenuItem('MissionED', 0, self.doEditMission),]
  25.                #guimaker.MenuItem('Quit',    0, self.quit)]   
  26.           ),
  27.     ]
  28.     
  29.     self.toolBar = [
  30.         ('MissionEdit', self.doEditMission,    {'side': Tkinter.LEFT }),
  31.         #('Old Level',    self.doOld,        {'side': Tkinter.LEFT }),
  32.         #('Campus Level',self.doCampus,        {'side': Tkinter.LEFT }),
  33.         #('Quit',     self.quit,         {'side': Tkinter.RIGHT}),        
  34.             ]
  35.     
  36.     def makeWidgets(self):
  37.     # Create the ScrolledText.
  38.         self.st = Pmw.ScrolledText(self,
  39.                 borderframe = 1,
  40.                 usehullsize = 1,
  41.                 hull_width = 400,
  42.                 hull_height = 300,
  43.                 text_padx = 10,
  44.                 text_pady = 10,
  45.                 text_wrap='none'
  46.         )
  47.         self.st.pack(padx=5, pady=5, expand=1, fill='both')
  48.     
  49.     def doEditMission(self):
  50.         self.editorShell = Pmw.MegaToplevel(title='MissionEditor')
  51.         self.editor = leveled.EditorApp(self.editorShell.interior())
  52.         self.editorShell.show()
  53.         #self.editor = levelEd.EditorApp(self)
  54.  
  55.     def doOld(self):
  56.     if __name__ != '__main__':
  57.             js.missionLoad(0)
  58.         
  59.     def doCampus(self):
  60.         if __name__ != '__main__':
  61.             js.missionLoad(9)
  62.         
  63.     def write(self, string):
  64.         self.text = self.text + string
  65.         self.st.settext(self.text)
  66.         
  67.     def writelines(self, lines):
  68.         for line in lines:
  69.             self.write(line)
  70.         
  71.       
  72.         
  73.        
  74. # ---------------------------------------------------------------
  75. # TEST DRIVE
  76. #
  77. root = Pmw.initialise()
  78. root.title(title)
  79. con = ConsoleWin(root)
  80. sys.stdout = con
  81. sys.stderr = con
  82. print "Hello from a redirected CONSOLE!"
  83. con.mainloop()
  84.  
  85.